home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / ghostscript.preinst < prev    next >
Text File  |  2009-10-12  |  979b  |  46 lines

  1. #!/bin/sh
  2. # preinst script for ghostscript
  3. #
  4. # see: dh_installdeb(1)
  5.  
  6. set -e
  7.  
  8. # summary of how this script can be called:
  9. #        * <new-preinst> `install'
  10. #        * <new-preinst> `install' <old-version>
  11. #        * <new-preinst> `upgrade' <old-version>
  12. #        * <old-preinst> `abort-upgrade' <new-version>
  13. #
  14. # for details, see http://www.debian.org/doc/debian-policy/ or
  15. # the debian-policy package
  16.  
  17.  
  18. case "$1" in
  19.     install|upgrade)
  20.     # Do away with update-alternative for /usr/bin/gs, we have one
  21.     # grand unified Ghostscript now!
  22.         if dpkg --compare-versions "$2" lt-nl "8.63.dfsg.1-1"; then
  23.             update-alternatives --remove-all gs || true
  24.             update-alternatives --remove-all gs.1 || true
  25.         fi
  26.  
  27.     ;;
  28.  
  29.     abort-upgrade)
  30.     ;;
  31.  
  32.     *)
  33.         echo "preinst called with unknown argument \`$1'" >&2
  34.         exit 1
  35.     ;;
  36. esac
  37.  
  38. # dh_installdeb will replace this with shell code automatically
  39. # generated by other debhelper scripts.
  40.  
  41.  
  42.  
  43. exit 0
  44.  
  45.  
  46.